Fix another leak
authorMatthias Clasen <matthiasc@src.gnome.org>
Thu, 4 Jan 2007 04:49:31 +0000 (04:49 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 4 Jan 2007 04:49:31 +0000 (04:49 +0000)
svn path=/trunk/; revision=17048

ChangeLog
gtk/gtkprintoperation.c

index edf3d5c4ff8e4751ac4c28f6878530cf9d6d0393..3c084b7fa19dca1dedf6a2504ade3922718e4b89 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-03  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkprintoperation.c (gtk_print_operation_finalize):
+       Don't leak the status string.
+
 2007-01-03  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkfilechooserdefault.c (update_chooser_entry):
index 0391b8ae233b8afeb68008be71bab32a86a7bac8..8b61514238beb6912028c0e0f95eaa1f001028a4 100644 (file)
@@ -123,6 +123,7 @@ gtk_print_operation_finalize (GObject *object)
   g_free (priv->export_filename);
   g_free (priv->job_name);
   g_free (priv->custom_tab_label);
+  g_free (priv->status_string);
 
   if (priv->print_pages_idle_id > 0)
     g_source_remove (priv->print_pages_idle_id);